home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ussbc23.zip / DEMOS / QR20DEMO.DPR < prev    next >
Text File  |  1997-02-17  |  299b  |  16 lines

  1. program qr20demo;
  2.  
  3. uses
  4.   Forms,
  5.   qr20frm1 in 'qr20frm1.pas' {frmDemo},
  6.   qr20frm2 in 'qr20frm2.pas' {frmQRReport};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TfrmDemo, frmDemo);
  13.   Application.CreateForm(TfrmQRReport, frmQRReport);
  14.   Application.Run;
  15. end.
  16.